home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / vim / src / amiga.h < prev    next >
C/C++ Source or Header  |  1995-03-09  |  972b  |  54 lines

  1. /* vi:ts=4:sw=4
  2.  *
  3.  * VIM - Vi IMproved        by Bram Moolenaar
  4.  *
  5.  * Read the file "credits.txt" for a list of people who contributed.
  6.  * Read the file "uganda.txt" for copying and usage conditions.
  7.  */
  8.  
  9. /*
  10.  * Amiga Machine-dependent things
  11.  */
  12.  
  13. /*
  14.  * Names for the EXRC, HELP and temporary files.
  15.  * Some of these may have been defined in the makefile.
  16.  */
  17.  
  18. #ifndef SYSVIMRC_FILE
  19. # define SYSVIMRC_FILE    "s:.vimrc"
  20. #endif
  21.  
  22. #ifndef SYSEXRC_FILE
  23. # define SYSEXRC_FILE    "s:.exrc"
  24. #endif
  25.  
  26. #ifndef VIMRC_FILE
  27. # define VIMRC_FILE        ".vimrc"
  28. #endif
  29.  
  30. #ifndef EXRC_FILE
  31. # define EXRC_FILE        ".exrc"
  32. #endif
  33.  
  34. #ifndef VIM_HLP
  35. # define VIM_HLP        "vim:vim.hlp"
  36. #endif
  37.  
  38. #ifndef DEF_DIR
  39. # define DEF_DIR        "t:"
  40. #endif
  41.  
  42. #define TMPNAME1        "t:viXXXXXX"
  43. #define TMPNAME2        "t:voXXXXXX"
  44. #define TMPNAMELEN        12
  45.  
  46. #ifndef MAXMEM
  47. # define MAXMEM            256        /* use up to 256Kbyte for buffer */
  48. #endif
  49. #ifndef MAXMEMTOT
  50. # define MAXMEMTOT        0        /* decide in set_init */
  51. #endif
  52.  
  53. #define BASENAMELEN        26        /* Amiga */
  54.